home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / Fresco / build / Win32 / make.bat
Encoding:
DOS Batch File  |  1995-07-12  |  2.3 KB  |  101 lines

  1. REM -------------------
  2. REM Set MSVC_DIR to your MSVC++ directory
  3. REM Set FASLAB_TOP to your faslab directory
  4. REM Set CONFIG to your "Win32 Debug" or "Win32 Rel"
  5. REM -------------------
  6.  
  7. set MSVC_TOP=\MSVC20
  8. set FASLAB_TOP=\faslab
  9. set CONFIG="Win32 Release"
  10.  
  11. set INCLUDE=%MSVC_TOP%\include;%MSVC_TOP%\MFC\include
  12. set LIB=%MSVC_TOP%\lib
  13. set PATH=%MSVC_TOP%\bin;%path%
  14.  
  15. REM
  16. REM Zero build the build tools.
  17. REM
  18. REM    !!! Currently you must build ixx from the VC++ GUI.
  19. REM
  20. REM cd %FASLAB_TOP%\build\Win32\ixx
  21. REM nmake /f "ixx.mak" CFG=%CONFIG%
  22.  
  23. REM
  24. REM First build the libraries.
  25. REM
  26.  
  27. cd %FASLAB_TOP%\build\Win32\fresco
  28. nmake /f "fresco.mak" CFG=%CONFIG%
  29.  
  30. cd %FASLAB_TOP%\build\Win32\fdisplay
  31. nmake /f "fdisplay.mak" CFG=%CONFIG%
  32.  
  33. cd %FASLAB_TOP%\build\Win32\figures
  34. nmake /f "figures.mak" CFG=%CONFIG%
  35.  
  36. cd %FASLAB_TOP%\build\Win32\figures_impl
  37. nmake /f "figures_impl.mak" CFG=%CONFIG%
  38.  
  39. cd %FASLAB_TOP%\build\Win32\layouts
  40. nmake /f "layouts.mak" CFG=%CONFIG%
  41.  
  42. cd %FASLAB_TOP%\build\Win32\layouts_impl
  43. nmake /f "layouts_impl.mak" CFG=%CONFIG%
  44.  
  45. cd %FASLAB_TOP%\build\Win32\widgets
  46. nmake /f "widgets.mak" CFG=%CONFIG%
  47.  
  48. cd %FASLAB_TOP%\build\Win32\widgets_impl
  49. nmake /f "widgets_impl.mak" CFG=%CONFIG%
  50.  
  51. REM
  52. REM Second build the examples.
  53. REM
  54.  
  55. cd %FASLAB_TOP%\build\Win32\bridge
  56. nmake /f "bridge.mak" CFG=%CONFIG%
  57.  
  58. cd %FASLAB_TOP%\build\Win32\button
  59. nmake /f "button.mak" CFG=%CONFIG%
  60.  
  61. cd %FASLAB_TOP%\build\Win32\event
  62. nmake /f "event.mak" CFG=%CONFIG%
  63.  
  64. cd %FASLAB_TOP%\build\Win32\figgy
  65. nmake /f "figgy.mak" CFG=%CONFIG%
  66.  
  67. cd %FASLAB_TOP%\build\Win32\grays
  68. nmake /f "grays.mak" CFG=%CONFIG%
  69.  
  70. cd %FASLAB_TOP%\build\Win32\hello
  71. nmake /f "hello.mak" CFG=%CONFIG%
  72.  
  73. cd %FASLAB_TOP%\build\Win32\rgb
  74. nmake /f "rgb.mak" CFG=%CONFIG%
  75.  
  76. cd %FASLAB_TOP%\build\Win32\simpleview
  77. nmake /f "simpleview.mak" CFG=%CONFIG%
  78.  
  79. cd %FASLAB_TOP%\build\Win32\transform
  80. nmake /f "transform.mak" CFG=%CONFIG%
  81.  
  82. cd %FASLAB_TOP%\build\Win32\value
  83. nmake /f "value.mak" CFG=%CONFIG%
  84.  
  85. REM
  86. REM Third build the applications.
  87. REM
  88.  
  89. cd %FASLAB_TOP%\build\Win32\fdraw
  90. nmake /f "fdraw.mak" CFG=%CONFIG%
  91.  
  92. REM
  93. REM You can only build dish if you have a Windows version of tcl.
  94. REM
  95. cd %FASLAB_TOP%\tcl_nt
  96. nmake -f makefile CPU=i386
  97. cd %FASLAB_TOP%\build\Win32\dish
  98. nmake /f "dish.mak" CFG=%CONFIG%
  99.  
  100. cd %FASLAB_TOP%\build\Win32
  101.